home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / oper_sys / oasis / oasisegs.lha / egs / hanoi.c < prev    next >
C/C++ Source or Header  |  1992-03-25  |  184b  |  19 lines

  1. /* C version of hanoi benchmark */
  2.  
  3. #include <stdio.h>
  4.  
  5. han(n,a,b,c)
  6. {
  7.    int n1;
  8.  
  9.    if (n<=0) return;
  10.    n1 = n-1;
  11.    han(n1,a,c,b);
  12.    han(n1,c,b,a);
  13. }
  14.  
  15. main()
  16. {
  17.   han(20,1,2,3);
  18. }
  19.